Welcome![Sign In][Sign Up]
Location:
Search - udp socket programming

Search list

[ICQ-IM-Chatlan_chat

Description: 局域网聊天工具(本程序设计分为服务器应用程序及客户机应用程序部分,采用Socket套接字库网络编程。(UDP)和(TCPIP)相结合的连接方式,及解决了数据传输的时效性又能保证数据在传输的过程中不会丢失。另外程序采用多个线程来避免程序阻塞)-LAN chat tools (this program is divided into server application and client application in part, using Socket socket network programming library. (UDP) and (TCPIP) a combination of connections, and resolved the timeliness of data transmission but also ensures that data in the process of transmission will not be lost. In addition the procedure to avoid the use of multiple threads blocking procedure)
Platform: | Size: 216064 | Author: 扬扬 | Hits:

[Internet-Networkudpsocketbased

Description: 基于UDP协议的socket编程,VC++实现,用于扫描同网段机器信息-Based on UDP protocol socket programming, VC++ Realize, for scanning the machine with the network segment information
Platform: | Size: 63488 | Author: 苗苗 | Hits:

[TCP/IP stackmyqq

Description: 一个基于聊天的程序,通过这个小程序的学习你可以学到如何使用套接字进行网络编程、自定义消息、多线程方面的编程思想以及学习使用各种控件。   本程序利用Socket套接字将主程序分为服务端和客户端两个部分。采用了UDP和TCP/IP相结合,有效提高了数据传输的时效性和稳定性。本程序还用到了多线程编程,用来解决程序自身阻塞的问题。 -A chat-based procedures, the adoption of this small program you can study and learn how to use the socket network programming, since the definition of news, multi-threaded programming aspects of thinking and learning using a variety of controls. This procedure will use the main program is divided into Socket socket server and client in two parts. Adopted UDP and TCP/IP combination effectively improved the timeliness of data transmission and stability. This procedure is also used in a multi-threaded programming procedures to solve their own congestion.
Platform: | Size: 238592 | Author: 小义 | Hits:

[Windows DevelopLANChat

Description: 毕业设计:VC++局域网聊天程序 本程序利用Socket套接字将主程序分为服务端和客户端两个部分。采用了UDP和TCP/IP相结合,有效提高了数据传输的时效性和稳定性。本程序还用到了多线程编程,用来解决程序自身阻塞的问题。 -Graduation Project: VC++ LAN chat program using this procedure will be the main program is divided into Socket socket server and client in two parts. Adopted UDP and TCP/IP combination effectively improved the timeliness of data transmission and stability. This procedure is also used in a multi-threaded programming procedures to solve their own congestion.
Platform: | Size: 237568 | Author: sdfads | Hits:

[Internet-Networksocket

Description: 网络编程!通过UDP协议获取客户端时间,程序简单易懂!-Network programming! Through the UDP protocol client access time, easy-to-read program!
Platform: | Size: 34816 | Author: 魏志君 | Hits:

[Delphi VCLchartRoom

Description: 使用delphi自带的控件,实现基于UDP的聊天工具通信,包括对SOCKET通信编程、基本控件使用、SQL数据库与delphi联合操作数据等-Use delphi s own control, UDP-based chat tool for communication, including SOCKET communications programming, use the basic controls, SQL database and delphi joint operation data, etc.
Platform: | Size: 1247232 | Author: zhoujuan | Hits:

[Internet-Networksever

Description: 网络服务器编程,包含TCP和UDP,几款流行的服务器模型-Web server programming, including TCP and UDP, several popular server model
Platform: | Size: 214016 | Author: 北平 | Hits:

[Windows DevelopLanTalk

Description: 本程序设计分为服务器应用程序及客户机应用程序部分,采用Socket套接字库网络编程。(UDP)和(TCP/IP)相结合的连接方式,及解决了数据传输的时效性又能保证数据在传输的过程中不会丢失。另外程序采用多个线程来避免程序阻塞。具体设计思路及部分代码如下: 程序设计目的:首先就是完成课设任务啦(大二课设内容)其他目的: 1:练习使用套接字进行网络编程。 2:练习使用自定义消息。 3:练习多线程方面的编程思想。 4:练习使用各种控件。 -This procedure is divided into server application design and part of the client application using Socket socket network programming library. (UDP) and (TCP/IP) connection method of combining, and resolved the timeliness of data transmission but also ensures that the process of data transmission will not be lost. Other procedures to avoid the use of multiple threads blocking procedures. Specific design ideas and some code as follows: program design purposes: first mission is set up you finish class (sophomore class for the content of) other purposes: 1: Practice using the socket network programming. 2: Practice the use of custom message. 3: practice aspects of multi-threaded programming idea. 4: Practice using a variety of controls.
Platform: | Size: 212992 | Author: baiydusr | Hits:

[TCP/IP stackUDPSocket

Description: 用UDP协议模拟socket编程的一问一答聊天 基于控制台 -Simulation using UDP protocol socket programming a question-and-answer chat-based console
Platform: | Size: 31744 | Author: | Hits:

[VC/MFCVC6SocketsAPI

Description: 用VC++6.0的Sockets API实现一个聊天室程序.txt   VC++对网络编程的支持有socket支持,WinInet支持,MAPI和ISAPI支持等。其中,Windows Sockets API是TCP/IP网络环境里,也是Internet上进行开发最为通用的API。最早美国加州大学Berkeley分校在UNIX下为TCP/IP协议开发了一个API,这个API就是著名的Berkeley Socket接口(套接字)。在桌面操作系统进入Windows时代后,仍然继承了Socket方法。在TCP/IP网络通信环境下,Socket数据传输是一种特殊的I/O,它也相当于一种文件描述符,具有一个类似于打开文件的函数调用-socket()。可以这样理解:Socket实际上是一个通信端点,通过它,用户的Socket程序可以通过网络和其他的Socket应用程序通信。Socket存在于一个"通信域"(为描述一般的线程如何通过Socket进行通信而引入的一种抽象概念)里,并且与另一个域的Socket交换数据。Socket有三类。第一种是SOCK_STREAM(流式),提供面向连接的可靠的通信服务,比如telnet,http。第二种是SOCK_DGRAM(数据报),提供无连接不可靠的通信,比如UDP。第三种是SOCK_RAW(原始),主要用于协议的开发和测试,支持通信底层操作,比如对IP和ICMP的直接访问。 -VC++6.0 using the Sockets API procedures for the realization of a chat room. Txt VC++ on the support network programming socket support, WinInet support, MAPI and ISAPI support. One, Windows Sockets API is TCP/IP network environment, but also for the development of Internet, the most common API. The first University of California, Berkeley campus in UNIX for the TCP/IP protocol has developed an API, the API is well-known Berkeley Socket interface (socket). Into the Windows desktop operating system in the era after the Socket method inherited. In the TCP/IP network communication environment, Socket data transmission is a special kind of I/O, it is equivalent to a file descriptor, open the file with a similar function call in-socket (). Can interpret it this way: Socket is a communication endpoint, through which users can program the Socket and other network applications of Socket Communications. Socket exist in a "communication domain" (as described in the general thread o
Platform: | Size: 3072 | Author: 李涛 | Hits:

[Internet-NetworkRawUDPsources001

Description: UDP编程的一个入门级的例子,详细介绍了socket,以及如何使用UDP进行编程通讯,非常有价值。-UDP programming an example of entry-level details of socket, and how to use UDP communication program, extremely valuable.
Platform: | Size: 5120 | Author: | Hits:

[OtherlabviewTCPcode

Description: Socket TCP UDP 连接编程,labview 网络连接编程源代码-Connection Socket TCP UDP programming, labview programming source code for network connections
Platform: | Size: 178176 | Author: liuyujijn | Hits:

[Internet-Networkwin_send

Description: 一个很简单的UDP收发包程序,也是初学SOCKET编程和认识SOCKET基本函数的好例子,我就是从中了解了UDP发包的全过程-A very simple UDP send and receive packets procedures are beginners SOCKET programming and knowledge of basic functions SOCKET a good example, I was to learn about the whole process of contracting of the UDP
Platform: | Size: 1191936 | Author: guan | Hits:

[TCP/IP stackSocketToollv

Description: 网络套接字编程工具,非常适用的网络调试与检测工具,包括TCP UDP,客户机和服务器调试,方便好用-Network socket programming tools, is ideal for network debugging and testing tools, including TCP UDP, client and server debugging is easy to use
Platform: | Size: 414720 | Author: zhyo | Hits:

[Windows DevelopUDP_Socket

Description: 網路程式使用Socket的簡單UDP連接範例,含server端和client端-Network programming using Socket to connect a simple UDP example, with server-side and client-side
Platform: | Size: 5296128 | Author: 黃泰穎 | Hits:

[Internet-NetworkUDPexamplesofsocketprogrammingexamples

Description: socket编程实例UDP实例,112335456612-UDP examples of socket programming examples
Platform: | Size: 5120 | Author: michael | Hits:

[Windows DevelopUDPcht

Description: 基于UDP的聊天程序,socket编程,希望对初学者有帮助-UDP-based chat program, socket programming, want to be helpful for beginners
Platform: | Size: 2338816 | Author: Anson11223 | Hits:

[Program docsocket_udp

Description: It s good example of socket programming using UDP.
Platform: | Size: 3072 | Author: Anurag | Hits:

[Internet-NetworkUDP_SOKET

Description: SOCKET网络编程源代码,基于UDP的socket。-SOCKET network programming source code, based on the UDP-socket.
Platform: | Size: 2048 | Author: fengzhizi_1 | Hits:

[Internet-Networkflymsg

Description: C#实现的一款即时通信小程序,利用socket封装的udp协议实现,是初学者学习socket编程的很好的源代码。功能比较简单,还有许多可以完善的地方 -C# to achieve a little instant messaging program, use socket package udp protocol implementation is very good for beginners to learn socket programming source code. Function is relatively simple, there are many places where you can improve the
Platform: | Size: 34816 | Author: 417 | Hits:
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 16 17 »

CodeBus www.codebus.net